home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / RCS / getlogin.c,v < prev    next >
Text File  |  1988-06-19  |  611b  |  46 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.06.19.14.31.25;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/*
  25.  * getlogin.c --
  26.  *
  27.  *    Emulate the UNIX getlogin() function. Since we have no /etc/utmp,
  28.  *    we have to rely on the USER envariable being set correctly...
  29.  *
  30.  * Copyright (c) 1987 by the Regents of the University of Californai
  31.  * All Rights Reserved
  32.  */
  33. #include <sprite.h>
  34. #include <proc.h>
  35.  
  36. char *
  37. getlogin()
  38. {
  39.     char    *name;
  40.     extern char *getenv();
  41.  
  42.     name = getenv("USER");
  43.     return (name);
  44. }
  45. @
  46.